home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 10 / AACD 10.iso / AACD / Resources / Online / Term / Extras / Source / gtlayout-source.lha / gtlayout_global.h < prev    next >
C/C++ Source or Header  |  1996-09-17  |  969b  |  50 lines

  1. /*
  2. **    GadTools layout toolkit
  3. **
  4. **    Copyright © 1993-1996 by Olaf `Olsen' Barthel
  5. **        Freely distributable.
  6. */
  7.  
  8. #ifndef _GTLAYOUT_GLOBAL_H
  9. #define _GTLAYOUT_GLOBAL_H 1
  10.  
  11. #define SAVE_DS
  12. #define ASM    __asm
  13. #define REG(x)    register __ ## x
  14. #define LIBENT    SAVE_DS ASM
  15.  
  16. #ifdef LINK_LIB
  17. #undef SAVE_DS
  18. #undef REG
  19. #undef LIBENT
  20. #define SAVE_DS __saveds
  21. #define REG(x)
  22. #define LIBENT
  23. #endif    // LINK_LIB
  24.  
  25. #ifndef _GTLAYOUT_INCLUDES_H
  26. #include "gtlayout_includes.h"
  27. #endif    // _GTLAYOUT_INCLUDES_H
  28.  
  29. #ifndef _GTLAYOUT_H
  30. #define GTLAYOUT_OBSOLETE 1
  31. #define LayoutHandle PublicLayoutHandle
  32. #include "gtlayout.h"
  33. #undef LayoutHandle
  34. #define LayoutHandle LayoutHandle
  35. #endif    // _GTLAYOUT_H
  36.  
  37. #ifndef _GTLAYOUT_INTERNAL_H
  38. #include "gtlayout_internal.h"
  39. #endif    // _GTLAYOUT_INTERNAL_H
  40.  
  41. #ifndef _GTLAYOUT_DATA_H
  42. #include "gtlayout_data.h"
  43. #endif    // _GTLAYOUT_DATA_H
  44.  
  45. #ifndef _GTLAYOUT_LIBPROTOS_H
  46. #include "gtlayout_libprotos.h"
  47. #endif    // _GTLAYOUT_LIBPROTOS_H
  48.  
  49. #endif    // _GTLAYOUT_GLOBAL_H
  50.